home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / GCC 1.37.1r15 / Build / BuildGCCStages < prev    next >
Encoding:
Text File  |  1993-04-13  |  487 b   |  26 lines  |  [TEXT/MPS ]

  1. # Do from one to four generations of full GCC compilation, including
  2. # self-compilation.  This script can take a very long time to run!
  3. #
  4. # Copyright © 1990 Apple Computer, Inc.
  5.  
  6. set GCC "`Directory -q`"
  7. echo {GCC}
  8.  
  9. set Commands "{GCC}Build:,{Commands}"
  10.  
  11. if "{1}" >= 1
  12.     BuildOneStage 1 "{GCC}"
  13. end
  14. if "{1}" >= 2
  15.     BuildOneStage 2 "{GCC}"
  16. end
  17. if "{1}" >= 3
  18.     BuildOneStage 3 "{GCC}"
  19. end
  20. if "{1}" >= 4
  21.     BuildOneStage 4 "{GCC}"
  22. end
  23. if "{1}" >= 5
  24.     echo "Sorry, can only do up to 4 stages"
  25. end
  26.